home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 19
/
CD_ASCQ_19_010295.iso
/
dos
/
prg
/
pas
/
swag
/
ansi.swg
/
0011_How To Use THEDRAW.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
633b
|
28 lines
> Also does anyone know how to import TheDraw Files into a prg and get
> them to show properly. Thanks.
Save the Files into Bin Format, then run BinOBJ on them. When you select a
public name, remember that this will be the Procedure's name.
After that Write:
Procedure <public name>; External; {$L <objname>}
Walkthrough example:
Saved File: Welcom.Bin
BinOBJ WELCOME WELCOME WELCOMESCREEN
In pascal:
Procedure WelcomeScreen; External; {$L WELCOME.OBJ}
In order to display, dump the Procedure to b800:0 -
Move(@WelcomeScreen,Mem[$B800:0],4000];
4000 is the size For 80x25. The size is x*y*2.